当我们在写React时候 会用到ES6中的class语法 ,比较常见的情况如下:
这里有两个问题:
解答 Q1:
Always call super() if you have a constructor and don’t worry about it if you don’t have a constructor
只有当你有一个 constructor 时候调用super()才是必须的 看代码:
|
|
上述代码完全符合规定所以你其实并没有必要去为你创建的每个React Component 调用super(),
话分两头 如果你的代码中有constrctor你就必须调用 super()
|
|
出现上述错误的原因是 super() 未被调用之前 this还未被初始化 (uninitialized) [更多]
或许聪敏的你会想着 使用一个空的constructor从而摆脱super()
ES6的 class 的constructors如果属于子类就 必须调用 super() 方法 所以一旦你的代码有
constructor你就必须调用用super()
解答Q 2:
Call super(props) only if you want to access this.props inside the constructor. React automatically set it for you if you want to access it anywhere else.
假使你想获取到constructor中的this.props你就必须调用super(props) 然后React就会自动为你自动为你配置好它 以便你可以在随便什么地方调用它
看一下使用super() 和 super(props)的不同 :
|
|
当使用super(props)时 你可以从constructor中获取到this.props
当然还有一点 当你想在其他地方使用它时 也没有必要将props传递到constructor中 React会自动为你设置好它 [更多]
我的理解是 总之 需要绑定 this. 方法或是需要在 constructor 使用操作 props 定义 state,就需要 constructor ,否则 例如在其他方法中(如 render())使用 this.props 则没必要要使用 constructor